home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / graphics / switchf.arc / makefile < prev    next >
Makefile  |  1987-08-24  |  244b  |  14 lines

  1. #
  2. # Test out switchf.c
  3. #    MWC version
  4. #
  5. CFLAGS = -O -V -DMWC -DTEST
  6.  
  7. switchf.prg : switchf.o alglobal.o init.o
  8.     cc -o switchf.prg switchf.o init.o alglobal.o -s -V -x
  9.  
  10. switchf.o alglobal.o init.o : aline.h compiler.h
  11.  
  12. clean:
  13.     rm *.o switchf.prg
  14.